|
|
|
|
Item Property, HeadersClass Class |
Returns the cell with the specified zero-based row index and zero-based column index.
Syntax HeadersClass Class (Softelvdm.SftTreeNET)
VB |
Public Default ReadOnly Property Item( _ |
C# |
public CellClass this[ int RowIndex int ColIndex ] { get; } |
C++ |
public: property CellClass^ this[ int , int ] { |
ColIndex
The zero-based column index.
RowIndex
The zero-based row index.
Property Value
The cell representing one row in the header area.
Comments
The Item property returns the cell with the specified zero-based row index and zero-based column index.
Each cell in the column header area is represented by a cell (of type CellClass).
Cells within the header area are retrieved using this property.
The Item property is the indexer of the HeadersClass class, so languages supporting indexers can use array syntax, usually [] or (), to access the Item property.